Split BST¶
Time: O(N); Space: O(H); medium
Given a Binary Search Tree (BST) with root node root, and a target value V, split the tree into two subtrees where one subtree has nodes that are all smaller or equal to the target value, while the other subtree has all nodes that are greater than the target value.
It’s not necessarily the case that the tree contains a node with value V.
Additionally, most of the structure of the original tree should remain.
Formally, for any child C with parent P in the original tree, if they are both in the same subtree after the split, then node C should still have the parent P.
You should output the root TreeNode of both subtrees after splitting, in any order.
Example 1:
Input: root = {TreeNode} [4,2,6,1,3,5,7], V = 2
Output: {TreeNode} [2,1], {TreeNode} [4,3,6,null,null,5,7]
Explanation:
Note that root, output[0], and output[1] are TreeNode objects, not arrays.
The given tree [4,2,6,1,3,5,7] is represented by the following diagram:
4 / \ 2 6 / \ / \ 1 3 5 7
while the diagrams for the outputs are:
4 / \ 3 6 and 2 / \ / 5 7 1
Notes:
The size of the BST will not exceed 50.
The BST is always valid and each node’s value is different.
[1]:
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
[2]:
class Solution1(object):
"""
Time: O(N)
Space: O(H)
"""
def splitBST(self, root, V):
"""
:type root: TreeNode
:type V: int
:rtype: List[TreeNode]
"""
if not root:
return None, None
elif root.val <= V:
result = self.splitBST(root.right, V)
root.right = result[0]
return root, result[1]
else:
result = self.splitBST(root.left, V)
root.left = result[1]
return result[0], root
[3]:
s = Solution1()
root = TreeNode(4)
root.left = TreeNode(2)
root.right = TreeNode(6)
root.left.left = TreeNode(1)
root.left.right = TreeNode(3)
root.right.left = TreeNode(5)
root.right.right = TreeNode(7)
V = 2
res1, res2 = s.splitBST(root, V)
assert res1.val == 2
assert res1.left.val == 1
assert res2.val == 4
assert res2.left.val == 3
assert res2.right.val == 6
assert res2.right.left.val == 5
assert res2.right.right.val == 7